Edit File - " . basename($file) . ""; echo '


Kembali
'; exit; } } function listFiles($path) { $files = scandir($path); $dirs = []; $regularFiles = []; foreach ($files as $file) { if ($file === '.' || $file === '..') continue; $fullPath = realpath($path . DIRECTORY_SEPARATOR . $file); if (is_dir($fullPath)) { $dirs[] = $fullPath; } else { $regularFiles[] = $fullPath; } } sort($dirs, SORT_NATURAL | SORT_FLAG_CASE); sort($regularFiles, SORT_NATURAL | SORT_FLAG_CASE); foreach (array_merge($dirs, $regularFiles) as $fullPath) { $file = basename($fullPath); echo ''; echo '' . htmlspecialchars($file) . ''; echo '' . (is_dir($fullPath) ? 'Folder' : 'File') . ''; echo '' . (is_dir($fullPath) ? '-' : number_format(filesize($fullPath))) . ''; echo ''; if (is_dir($fullPath)) { echo 'Open'; } else { echo 'Download '; echo 'Edit '; echo 'Delete '; } echo 'Rename'; echo ''; echo ''; } } ?> Modern File Manager

File Manager -

NamaTipeUkuran (byte)Aksi
.. (Up)